home *** CD-ROM | disk | FTP | other *** search
- <SCRIPT LANGUAGE="VBScript">
-
- ' ************************
- ' This is the main command script handler for ASF embedded scripts
- ' ( Written by Digital Renaisance, Toronto, Canada, 1999 )
- ' ************************
-
- Sub DSPlay1_ScriptCommand(bstrType, bstrParam)
-
- Select Case Ucase(bStrType)
- Case "CAPTION"
- 'msgbox("Caption Selected")
- change(bstrParam)
- Case "FILENAME"
- 'msgbox("Filename Selected")
- if not ( DSPlay1.InvokeURLs ) then
- Launch_Url(bstrParam)
- end if
- Case "URL"
- 'msgbox("URL Selected")
- if not ( DSPlay1.InvokeURLs ) then
- Launch_Url(bstrParam)
- end if
- End Select
- End Sub
- </SCRIPT>